home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscClockPalette / Makefile.postamble < prev    next >
Encoding:
Makefile  |  1995-01-30  |  705 b   |  29 lines

  1. #    MiscClockPalette Postamble
  2. #    basically lifted from a mini-example
  3. #    this is 3.1 specific, and will enable the building of FAT palletes!
  4.  
  5.  
  6. #LIBTOOL = /bin/ar r         # for 3.0
  7. LIBTOOL = /bin/libtool -o    # for 3.1, 3.2, fat palettes
  8.  
  9. RELOCATABLE_STRIP_OPTS = -x -u
  10.  
  11. # Optimization flag passed to compiler:
  12. OPTIMIZATION_CFLAG = -O2 -pipe
  13.  
  14. COMMON_CFLAGS = $(PROJECT_SPECIFIC_CFLAGS) -Wall  
  15.  
  16. # Flags passed to compiler in normal 'app' compiles:
  17. NORMAL_CFLAGS = $(COMMON_CFLAGS) $(OPTIMIZATION_CFLAG)
  18.  
  19. # Flags passed to compiler in normal 'app' compiles:
  20. # old (3.2) way
  21. #NORMAL_CFLAGS = $(OPTIMIZATION_CFLAG) -Wall
  22.  
  23. lib:
  24.     $(MAKE) libMiscClockView.a
  25.  
  26. libMiscClockView.a: $(LIBOFILES)
  27.     $(LIBTOOL) $@ $(LIBOFILES)
  28.  
  29.